home *** CD-ROM | disk | FTP | other *** search
/ Chip 2005 March / CMCD0305.ISO / Software / Freeware / Comunicatii / Winscp / winscp373setup.exe / {app} / WinSCP3.exe / 0 / STRING / 2.txt < prev    next >
Encoding:
Text File  |  2005-02-06  |  5.4 KB  |  133 lines

  1. ╔rmdir <directory> [ <directory2> ... ]
  2.   Removes one or more remote directories. If remote recycle bin is
  3.   configured, moves directory to the bin instead of deleting it.
  4. examples:
  5.   rmdir public_html
  6. mv <file> [ <file2> ... ] [ <directory>/ ][ <newname> ]
  7.   Moves or renames one or more remote files. Destination directory or new
  8.   name or both must be specified. Destination directory must end with 
  9.   slash. Operation mask can be used instead of new name.
  10.   Filename can be replaced with wildcard to select multiple files.
  11. alias:
  12.   rename
  13. examples:
  14.   mv index.html public_html/
  15.   mv index.html about.*
  16.   mv index.html public_html/about.*
  17.   mv public_html/index.html public_html/about.html /home/martin/*.bak
  18.   mv *.html /home/backup/*.bak
  19. <chmod <mode> <file> [ <file2> ... ]
  20.   Changes permissions of one or more remote files. Mode can be specified
  21.   as three or four-digit octal number.
  22.   Filename can be replaced with wildcard to select multiple files.
  23. examples:
  24.   chmod 644 index.html about.html
  25.   chmod 1700 /home/martin/public_html
  26.   chmod 644 *.html
  27. mln <target> <symlink>
  28.   Creates remote symlink.
  29. alias:
  30.   symlink
  31. examples:
  32.   ln /home/martin/public_html www
  33. Lmkdir <directory>
  34.   Creates remote directory.
  35. examples:
  36.   mkdir public_html
  37. îget <file> [ [ <file2> ... ] <directory>\[ <newname> ] ]
  38.   Downloads one or more files from remote directory to local directory.
  39.   If only one parameter is specified downloads the file to local working
  40.   directory. If more parameters are specified, all except the last one
  41.   specify set of files to download. The last parameter specifies target
  42.   local directory and optionally operation mask to store file(s) under
  43.   different name. Destination directory must end with backslash. 
  44.   Filename can be replaced with wildcard to select multiple files.
  45.   To download more files to current working directory use '.\' as the
  46.   last parameter.
  47.   Use 'option' command to set transfer options.
  48. alias:
  49.   recv
  50. effective options:
  51.   transfer, confirm
  52. examples:
  53.   get index.html
  54.   get index.html about.html .\
  55.   get index.html about.html d:\www\
  56.   get public_html/index.html d:\www\about.*
  57.   get *.html *.png d:\www\*.bak
  58. òput <file> [ [ <file2> ... ] <directory>/[ <newname> ] ]
  59.   Uploads one or more files from local directory to remote directory.
  60.   If only one parameter is specified uploads the file to remote working
  61.   directory. If more parameters are specified, all except the last one
  62.   specify set of files to upload. The last parameter specifies target
  63.   remote directory and optionally operation mask to store file(s) under
  64.   different name. Destination directory must end with slash. 
  65.   Filename can be replaced with wildcard to select multiple files.
  66.   To upload more files to current working directory use './' as the
  67.   last parameter.
  68.   Use 'option' command to set transfer options.
  69. alias:
  70.   send
  71. effective options:
  72.   transfer, confirm
  73. examples:
  74.   put index.html
  75.   put index.html about.html ./
  76.   put index.html about.html /home/martin/public_html/
  77.   put d:\www\index.html about.*
  78.   put *.html *.png /home/martin/backup/*.bak
  79. ▐option [ <option> [ <value> ] ]
  80.   If no parameters are specified, lists all script options and their
  81.   values. When one parameter is specified only, shows value of the option.
  82.   When two parameters are specified sets value of the option.
  83.   Initial values of some options are taken from application configuration,
  84.   however modifing the options does not change the application
  85.   configuration.
  86. options are:
  87.   batch       on/off
  88.               Toggles batch mode (all prompts are automatically replied
  89.               negatively). When 'on', it is recommended to set 'confirm'
  90.               to 'off' to allow overwrites.
  91.               Commands affected: nearly all
  92.   confirm     on/off
  93.               Toggles confirmations (overwrite, etc.).
  94.               Commands affected: get, put
  95.   transfer    binary/ascii/automatic
  96.               Transfer mode: binary, ascii (text), automatic (by extension).
  97.               Commands affected: get, put, synchronize, keepuptodate
  98.   synchdelete on/off
  99.               Should obsolete files be deleted during synchronisation?
  100.               Commands affected: synchronize, keepuptodate
  101. aliases:
  102.   ascii =  option transfer ascii
  103.   binary = option transfer binary
  104. examples:
  105.   option
  106.   option transfer
  107.   option confirm off
  108. ¢synchronize local|remote|both [ <local directory> [ <remote directory> ] ]
  109.   When the first parameter is 'local' synchronises local directory with
  110.   remote one. When the first parameter is 'remote' synchronises remote
  111.   directory with local one. When the first parameter is 'both' synchronises
  112.   directories one against the other.
  113.   When directories are not specified, current working directories are
  114.   synchronized.
  115.   Obsolete files are deleted, if option 'synchdelete' is on.
  116.   Note: Overwrite confirmations are always off for the command.
  117. effective options:
  118.   transfer, synchdelete
  119. examples:
  120.   synchronize remote
  121.   synchronize both d:\www /home/martin/public_html
  122. ⌡keepuptodate [ <local directory> [ <remote directory> ] ]
  123.   Watches for changes in local directory and reflects them on remote one.
  124.   When directories are not specified, current working directories are
  125.   synchronized. To stop watching for changes press Ctrl-C.
  126.   Obsolete files are deleted, if option 'synchdelete' is on.
  127.   Note: Overwrite confirmations are always off for the command.
  128. effective options:
  129.   transfer, synchdelete
  130. examples:
  131.   keepuptodate
  132.   keepuptodate d:\www /home/martin/public_html
  133.